From 96793999df26e71ff22473b5c15f97d1a3b13e21 Mon Sep 17 00:00:00 2001 From: Tristan Van Berkom Date: Mon, 29 Mar 2010 13:16:01 -0400 Subject: [PATCH] Added missing break statement to mutator: gtk_tool_item_group_set_property() --- gtk/gtktoolitemgroup.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk/gtktoolitemgroup.c b/gtk/gtktoolitemgroup.c index ecff531c45..fea9f29d45 100644 --- a/gtk/gtktoolitemgroup.c +++ b/gtk/gtktoolitemgroup.c @@ -434,6 +434,7 @@ gtk_tool_item_group_set_property (GObject *object, case PROP_LABEL_WIDGET: gtk_tool_item_group_set_label_widget (group, g_value_get_object (value)); + break; case PROP_COLLAPSED: gtk_tool_item_group_set_collapsed (group, g_value_get_boolean (value)); -- 2.30.2